home *** CD-ROM | disk | FTP | other *** search
/ Power CD / Power CD ATARI-Rechner Lieben.iso / UTILITY / KOLUMBUS / TURBOC.MAK < prev    next >
Encoding:
Text File  |  1992-12-06  |  766 b   |  29 lines

  1. .make
  2. #
  3. # .srcpath=<path>      specifies the  sourcepath
  4. # .binpath=<path>      specifies the  compilerpath
  5. # .tos                 switch to tosenvironment
  6. #
  7. # beispiel einer makedatei mit mehreren sourcedateien für TURBO C.
  8. # mit dieser makedatei wurde KOLUMBUS selst erzeugt.
  9. #
  10. .tos
  11. .binpath=\TC
  12. .srcpath=\TC\KOLUMB
  13.  
  14. kolum199.app:   komain.o koedit1.o kodivers.o kocoman.o
  15.   tlink.ttp  -C=kolumbus.lnk
  16.  
  17. komain.o:       komain.c kolumbu.h kolumbus.h
  18.   tcc.ttp -P -G -I\tc\include komain
  19.  
  20. koedit1.o:      koedit1.c kolumbu.h kolumbus.h
  21.   tcc.ttp -P -G -I\tc\include koedit1
  22.  
  23. kodivers.o:     kodivers.c kolumbu.h
  24.   tcc.ttp -P -G -I\tc\include kodivers
  25.  
  26. kocoman.o:      kocoman.c kolumbu.h kolumbus.h
  27.   tcc.ttp -P -G -I\tc\include kocoman
  28.  
  29.